From: Andrew Cooper Date: Thu, 24 May 2018 14:06:16 +0000 (+0100) Subject: x86/traps: Dump the instruction stream even for double faults X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~81 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=4712c0a231f010253a5471531e335a5a13dcec76;p=xen.git x86/traps: Dump the instruction stream even for double faults This helps debug #DF's which occur in alternative patches Reported-by: George Dunlap Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich Release-acked-by: Juergen Gross --- diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c index 824647ddce..8a99174b67 100644 --- a/xen/arch/x86/traps.c +++ b/xen/arch/x86/traps.c @@ -148,7 +148,7 @@ void (* const exception_table[TRAP_nr])(struct cpu_user_regs *regs) = { (ARRAY_SIZE(exception_table) - 1)] = do_reserved_trap, }; -static void show_code(const struct cpu_user_regs *regs) +void show_code(const struct cpu_user_regs *regs) { unsigned char insns_before[8] = {}, insns_after[16] = {}; unsigned int i, tmp, missing_before, missing_after; diff --git a/xen/arch/x86/x86_64/traps.c b/xen/arch/x86/x86_64/traps.c index 4f85c32f92..f7f6928d70 100644 --- a/xen/arch/x86/x86_64/traps.c +++ b/xen/arch/x86/x86_64/traps.c @@ -255,6 +255,7 @@ void do_double_fault(struct cpu_user_regs *regs) printk("CPU: %d\n", cpu); _show_registers(regs, crs, CTXT_hypervisor, NULL); + show_code(regs); show_stack_overflow(cpu, regs); panic("DOUBLE FAULT -- system shutdown"); diff --git a/xen/include/asm-x86/processor.h b/xen/include/asm-x86/processor.h index 0c69a5281b..9924cdf1f3 100644 --- a/xen/include/asm-x86/processor.h +++ b/xen/include/asm-x86/processor.h @@ -468,6 +468,7 @@ static always_inline void rep_nop(void) #define cpu_relax() rep_nop() +void show_code(const struct cpu_user_regs *regs); void show_stack(const struct cpu_user_regs *regs); void show_stack_overflow(unsigned int cpu, const struct cpu_user_regs *regs); void show_registers(const struct cpu_user_regs *regs);